Skip to main content

All Questions

3votes
2answers
454views

Java Reflection-based CSV Parser

I'm an experienced Java developer, however I don't have experience with reflection or Annotation classes. For fun, I tried to develop a CSV Reader class which can parse each row into a particular type....
Richard Robinson's user avatar
3votes
1answer
479views

CSV Reader from scratch

I am new to Java and not quite familiar with its design patterns. I have tried to implement a CSV-File reader from scratch. The CSVFile constructor accepts the path to the file and a class which ...
FooBar's user avatar
4votes
2answers
4kviews

Parsing a string as fast as possible that is using comma delimiters

I have made a simple static parser for a bigger program. This parser takes a string that has comma deliminators and I need to separate the strings in to a vector for handling in a different section of ...
Caperneoignis's user avatar
4votes
1answer
365views

Parser for tab-delimited data as a subclass of StringReader

I wanted to parse lines of text as tab-delimited items, and I had just been using a StringReader for something else and I came up with this: ...
Aaron Anodide's user avatar

close